home *** CD-ROM | disk | FTP | other *** search
- { graphlib.pas -- Import library unit for GraphDLL }
-
- unit GraphLib;
-
- interface
-
- uses Wintypes, WinProcs;
-
- procedure Circle(DC: HDC; X, Y, W: Integer);
- procedure Square(DC: HDC; X, Y, W: Integer);
-
- implementation
-
- procedure Circle; external 'GRAPHDLL' index 1;
- procedure Square; external 'GRAPHDLL' index 2;
-
- end.
-
-
- {--------------------------------------------------------------
- Copyright (c) 1991 by Tom Swan. All rights reserved.
- Revision 1.00 Date: 5/25/1991
- ---------------------------------------------------------------}
-